home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 32 / Mac Magazin and MacEasy Magazine CD - Issue 32.iso / Multimedia / MIDI / JUNO Librarian 1.1.7 / Sample Scripts / 31 Change VCA ENV⁄GATE < prev    next >
Text File  |  1994-01-28  |  386b  |  17 lines

  1. tell application "JUNO Librarian"
  2.     activate -- if needed
  3.     set x to Parameter 17 of Window "Sample"
  4.     set y to (round (x ÷ 4) rounding down)
  5.     set y to y * 4
  6.     set z to x - y -- ENV, PWM switch
  7.     set y to (round (y ÷ 8) rounding down)
  8.     set y to y * 8
  9.     set x to y + z
  10.     
  11.     -- select 1 of 2
  12.     --    set x to x + 0 -- ENV
  13.     set x to x + 4 -- GATE
  14.     
  15.     copy x to Parameter 17 of Window "Sample"
  16. end tell
  17.